@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Kanit", sans-serif;
    font-weight: 500;
}
html{
    scroll-behavior: smooth;
}
body {
    background-color: #323234;
    color: white;
    height: 100%;
}
ul li{
    list-style: none;
}
a{
    text-decoration: none;
    color: white;
}
img{
    width: 70%;
    height: 80%;
}
nav {
    width: 100vw;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 800;
}
.logo {
    font-family: "Kanit", sans-serif;
    font-weight: 500;
    padding-left: 8%;
    font-size: 1.4em;
    width: 40%;
}
.logo a{
    text-decoration: none;
    color: white;
}
.clr {
    color: #00FBFC;
}
.navbar {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 150px;
    font-size: 1.2em;
}
#hamburger {
    font-size: 2em;
    display: none;
}
#hamburgerN {
    font-size: 2em;
    display: none;
}
.navbar ul {
    display: flex;
    align-items: center;
    
}
.navbar ul li {
    margin-right: 50px;
    list-style: none;
    padding-bottom: 10px;
}
.navbar ul li a {
    text-decoration: none;
    color: white;
}
.navbar ul li a:hover{
    color: #00FBFC;
    text-shadow: 0px 0px 30px #00FBFC;
}
.active:hover{
    border-bottom: 3px solid #00FBFC;
    
}

/*Hero section*/
#hero{
    width: 100vw;
    height: 90vh;
    display: flex;
}
.leftside{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prof-pic{
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 50px #00FBFC;
    border: 8px solid #00FBFC;
}

.prof-pic img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover; /* Ensures the image fits inside the circle */
}
.rightside{
    width: 60%;
    /*background-color: rgb(104, 104, 103);*/
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 50px;
}
.rightside h3{
    font-weight: 500;
    font-size: 2.7em;
}
.rightside h1{
    font-size: 4em;
    font-weight: 800;
}
.typewriter-container{
    font-size: 2.7em;
}
.rightside p{
    font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-right: 300px;
}
/*Type writer*/
.static-text {
    color: #ffffff; /* Color of the static "And I am" text */
}

#typewriter {
    color: #19ECF9; /* Color of the typewriter strings */
}

.cursor {
    font-weight: bold;
    color: #00ffcc;
    animation: blink 0.7s infinite;
}
.social-box{
    width: 400px;
    height: 50px;
    display: flex;
    flex-direction: row;
    padding: 20px 20px 20px 0px;
    margin:30px 0 20px 0;
    align-items: center;
    justify-content: space-between;
}
.box{
    width: 50px;
    height: 50px;
    border: 3px solid #00FBFC;
    display: flex;
    margin: 0 10px 0 0;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
}
.box:hover{
    box-shadow: 0px 0px 30px #00FBFC;
    cursor: pointer;
}
.box a{
        text-decoration: none;
        color: #00FBFC;
        
}
#cvdownload{
    margin-top: 30px;
    width: 200px;
    height: 50px;
    border-radius: 50px;
    background-color: #00FBFC;
    cursor: pointer;
    font-size: 1.1em;
}
@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/*About section*/
.about{
    width: 100vw;
    height: 100vh;
    display: flex;
    
    flex-direction: column;
}
.about_tittle{
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 10px 10px 10px;
    font-size: 2em;
}
.about_main{
    width: 100%;
    height: 100%;
    display: flex;
}
.about_left{
    width: 60%;
    height: 100%;
    font-size: 1.3em;

}
.about_left ul{
    display: flex;
    flex-direction: column;
    padding: 20px 0px 20px 0px;
    margin: 20px 0px 0px 100px;
}
.about_left ul li{
    list-style: none;
    margin: 10px 0px 10px 0px;
    padding: 10px;
    border-bottom: 2px solid #00FBFC;
}
.left-bar{
    border-left: 2px solid #00FBFC;
}
.about_right{
    width: 40%;
    height: 100%;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.outer-box{
    width: 400px;
    height: 350px;
    border-radius: 40px;
    background-color: #7f737371;
    display: flex;
    align-items: center;
    justify-content: center;
    transform:rotate(170deg);
    box-shadow: 0px 0px 50px #00FBFC;
    border: 2px solid #19ECF9;
}
.inner-box{
    width: 400px;
    height: 350px;
    border-radius: 40px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    animation: move 3s linear infinite;
}
.inner-box img{
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
}
@keyframes move {
    0%{
        transform: translateY(0);

    }
    25%{
        transform: translateY(-10px);
    }
    50%{
        transform: translateY(0px);
    }
    75%{
        transform: translateY(10px);
    }
    100%{
        transform: translateY(0px);
    }
}
.cvsec{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 150px;
}
.cvdownload{
    margin-top: 30px;
    width: 200px;
    height: 50px;
    border-radius: 50px;
    background-color: #00FBFC;
    cursor: pointer;
    font-size: 1.1em;
}

/*Skills section*/
.skill{
    height: 100vh;
    display: flex;
    flex-direction: column;
    /*background-color: red;*/
    margin-top: 0px;
    
}
.skill-tittle{
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px 10px 10px;
    font-size: 2em;
}
.skill-main{
    width: 100%;
    height: auto; /* Ensure height adjusts automatically */
    display: flex;
    padding: 70px 0 50px 0;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 15px; /* Reduced gap for better spacing */
    justify-content: center;
    overflow-x: hidden; /* Prevent horizontal overflow */
}
.skill-sec{
    width: 100%;
    max-width: 450px; /* Set a max width but allow flexibility */
    height: auto;
    padding: 15px;
    background-color: #7f737371;
    display: flex;
    flex-direction: column;
    border-radius: 50px; 
    transition: .5s ease;  
    box-sizing: border-box; /* Ensure padding doesn't affect the width */
}
.skill-sec:hover{
    box-shadow: 0px 30px 30px #08c4ce;
    transform: translateY(-60px);
}
.skill-domain{
    /*background-color: red;*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 10px 0;
}
.skill-repr{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    /*background-color: yellow;*/
    padding: 20px;
}
.skill-repr li{
    padding: 10px;
   /* background-color: black;*/
    margin: 10px 0 10px 0;
    display: flex;
    flex-direction: column;
}
.skill-name{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.skill-pic-box{
    width: 100%;
    height: 10px;
    background-color:#a7a0a0bf ;
    display: flex;
    border-radius: 10px;
}
.inner-percent{
    background-color:#00FBFC;
    border-radius: 10px;
    width: auto; /* Ensure the progress bar fits dynamically */
    max-width: 100%; /* Ensure no overflow occurs */
}
/*Web*/
#html_css{
    width: 90%;
}
#javascript{
    width: 80%;
}
#react{
    width: 60%;
}
#mysql{
    width: 86%;
}
#php{
    width: 70%;
}
/*software*/


/*Projects section*/
#projects{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    overflow-x: hidden; /* Prevent horizontal overflow */
}
.proj-tittle{
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px 10px 10px;
    font-size: 2em;
}
.projects-main{
    display: flex;
    height: auto;
    flex-direction: column;
    
}
.project-container{
    display: flex;
    flex-direction: row;
    padding: 20px 0px 10px 0px;
    margin-bottom: 20px;
    width: 100%; /* Ensure project container doesn't overflow */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}
.proj-left{
    width: 60%;
    display: flex;
    flex-direction: column ;
    
    padding: 20px 20px 20px 250px;
}
.project-name{
    color: #00FBFC;
    font-size: 1.3em;
    padding-bottom: 10px;
}
.description{
    padding-right: 200px;
    padding-left: 20px;
    padding-bottom: 40px;
    font-size: 1em;
    font-weight: 500;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}
.p-rcol{
    padding: 20px 20px 20px 100px;
}
.read-more{
    width: 100px;
    padding: 5px;
    background-color: transparent;
    border-radius: 10px;
    outline: none;
    border: 2px solid transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
}
.read-more:hover{
    box-shadow: 0px 0px 10px #807d7d;
    cursor: pointer;
    
}
.proj-right{
    width: 40%;
    height: 100%;
    padding-right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.proj-right img{
    width: 100%;
    height: 100%;
    border-radius:40px ;
}
.rcol{
    flex-direction: row-reverse;
    padding: 10px;
}

/*modal*/
.bb{
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.7);
    display: none;

}
.modal{
    width: 80%;
    height: 80%;
    background-color: white;
    position: fixed; 
    z-index: 1; 
    left: 10%;
    top: 10%;
    display: none;
    flex-direction: column;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
   

    
}

/*modal section*/
.modal-head{
    width: 100%;
    height: 10%;
    background-color: rgb(236, 174, 174);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px 0px 20px;
    font-size: 2em;
    color: black;
    margin-bottom: 10px;
    box-shadow: 0px 5px 10px rgb(206, 203, 203);
}
.modal-head h1{
    color: #ffffff;
    font-size: 1.2em;
}
.close{
    cursor: pointer;
}

.project-info-sec{
    height: 90%;
    width: 100%;
    display: flex;
    flex-direction: row;
    /*background-color: green;*/
}
.modal-pinfo-left{
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 10px 10px 150px;
    color: grey;
    flex-direction: column;
}
.modal-pinfo-left ul li{
    padding: 10px;
}
.get-code{
    width: 150px;
    padding: 5px;
    background-color: #1b1a1ab8;
    border-radius: 10px;
    outline: none;
    border: 2px solid #ffffff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    font-size: 1.2em;    
}
.get-code:hover{
    cursor: pointer;
    color: #00FBFC;
    box-shadow: 0px 0px 20px rgb(137, 135, 135);
}

.modal-pinfo-right{
    width: 40%;
    
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Container for all images */
.image-container {
    display: flex;
    gap: 15px; /* Space between images */
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
    padding: 20px;
}

/* Individual image cards */
.image {
    width: 150px; /* Start with a smaller width */
    height: 200px;
    box-shadow: 0px 0px 10px rgb(137, 135, 135);
    background-color: white;
    overflow: hidden; /* Hide overflowing parts of the image */
    border-radius: 10px;
    transition: all 0.3s ease; /* Smooth transition for hover */
    position: relative; /* Needed for transform scaling */
}

/* Image inside the card */
.image img {
    width: 100%; /* Let the image fill the card */
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease; /* Smooth scaling on hover */
}

/* Hover effect to expand the image card */
.image:hover {
    width: 250px; /* Expands width on hover */
    height: 250px;
    transform: scale(1.1); /* Slight zoom effect */
    z-index: 10; /* Bring the hovered card to the front */
    cursor: pointer;
}
.view-more{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px 50px 10px;
}
.view-more-btn{
    padding: 10px 15px 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 20px;
    font-size: 1.2em;
    color: white;
    background-color: purple;
}

/*Contact section*/
#contact{
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-size: 1.2em;
}
.contact-main{
    padding-top: 40px;
    display: flex;
    flex-direction: row;
}
.contact-left{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    padding-right: 5%;
}
.contact-right{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 5%;
}
footer{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    font-family: Arial, Helvetica, sans-serif;
}
/* Responsive design */
@media screen and (min-width: 200px) and (max-width: 426px) {
    nav {
        font-size: 0.65em;
        height: auto;
        background-color: #444444;
        position: relative;
        transition: max-height 0.3s ease-in-out;
    }
    .logo {
        width: 100%;
        padding-left: 20px;
        
    }
    .navbar {
        width: 100%;
        padding-right: 10px;
        
    }
    #hamburger {
        display: flex;
        align-items: center;
    }
    #hamburgerN {
        display: none;
        align-items: center;

    }
    #nav_list {
        display: none; /* Initially hidden */
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center horizontally */
        gap: 20px; /* Adds gap between list items */
        padding: 20px 0; /* Optional: adds vertical padding */
        width: 100%;
        font-size: 1.9em;
    }
    
    
    /*Hero section*/
    #hero{
        flex-direction: column;
    }
    .leftside{
        width: 100%;
        height: 40vh;
    }
    .prof-pic{
        width: 200px;
        height: 200px;
        border: 3px solid #00FBFC;
    }

    .rightside{
        width: 100%;
        padding:0px 20px 0 30px;
    }

    .rightside h3{
        font-size: 1.5em;
    }
    .rightside h1{
        font-size: 2em;
    }
    .rightside p{
        font-size: 0.7em;
        padding: 1px;
    }
    .typewriter-container{
        font-size: 1.5em;
    }
    
    /*Type writer*/
   
    .social-box{
        width: 300px;
        height: 20px;
        display: flex;
        flex-direction: row;
        padding: 20px 20px 20px 0px;
        margin:20px 0 20px 0;
        align-items: center;
        
        justify-content: space-between;
    }
    .box{
        width: 50px;
        height: 50px;
        border: 2px solid #00FBFC;
        display: flex;
        margin: 0 10px 0 0;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        font-size: 1.2em;
    }
    .box a{
            text-decoration: none;
            color: #00FBFC;
            
    }
    #cvdownload{
        margin-top: 8px;
        width: 120px;
        height: 40px;
        border-radius: 50px;
        background-color: #00FBFC;
        cursor: pointer;
        font-size: 0.8em;
    }
    .cvdownload{
        margin-top: 8px;
        width: 120px;
        height: 40px;
        border-radius: 50px;
        background-color: #00FBFC;
        cursor: pointer;
        font-size: 0.8em;
    }
    /*About section*/
    .about{
        margin: 10p;
        height: 650px;
    }
    .about_tittle{
        padding: 50px 10px 10px;
        font-size: 1.5em;
    }
    .about_left{
        width: 90%;
        height: 100%;
        font-size: 1.3em;
    
    }
    .about_left ul{
        margin: 20px 0px 0px 10px;
        font-size: 0.8em;
    }
    .about_left ul li{
        list-style: none;
        margin: 10px 0px 10px 0px;
        padding: 10px;
        border-bottom: 2px solid #00FBFC;
    }
    .left-bar{
        border-left: 2px solid #00FBFC;
    }
    .about_right{
        font-size: 1.3em;
        display: none;
    }

    /*skill section*/
    .skill{
        height: 180vh;
    }
    .skill-tittle{
        height: 100px;
        font-size: 1.5em;
        
    }
    .skill-main{
        /*background-color: green;*/
        flex-direction: column;
        padding-top: 0px;
        
        margin-top: 0px;
        align-items: center;
    }
    .skill-sec{
        width: 300px;
        padding: 20px 0px 20px 0px;
    }
    .skill-sec:hover{
        box-shadow: 0px 0px 20px #08c4ce;
        transform: translateY(0px);
    }
    .skill-repr{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        /*background-color: yellow;*/
        padding: 10px;
        font-size: 0.9em;
    }
    .skill-repr li{
        padding: 7px;
       /* background-color: black;*/
        margin: 5px 0 0px 0;
        display: flex;
        flex-direction: column;
    }
    .skill-name{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .skill-pic-box{
        width: 100%;
        height: 10px;
        background-color:#a7a0a0bf ;
        display: flex;
        border-radius: 10px;
    }
    .inner-percent{
        background-color:#00FBFC;
        border-radius: 10px;
    }

    /*Project section*/
    .proj-tittle{
        height: 100px;
        font-size: 1.5em;
    }
    .project-container{
        flex-direction: column-reverse;
        padding: 10px 0px 50px 0px;
    }
    .proj-left{
        width: 100%;
        height: 60%;
        padding: 10px 10px 10px 10px;
    }
    .project-name{
        color: #00FBFC;
        font-size: 1em;
        padding-bottom: 5px 0px 5px 0px;
    }
    .description{
        padding-right: 10px;
        padding-left: 10px;
        padding-bottom: 20px;
        
    }
    .p-rcol{
        padding: 10px;
    }
    .read-more{
        width: 100px;
        padding: 5px;
        background-color: transparent;
        border-radius: 10px;
        outline: none;
        border: 2px solid transparent;
        color: white;
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-direction: row;
    }
    .read-more:hover{
        box-shadow: 0px 0px 10px #807d7d;
        cursor: pointer;
        
    }
    .proj-right{
        width: 100%;
        height: 40%;
        padding-right: 0px;
        padding-bottom: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .proj-right img{
        width: 100%;
        height: 100%;
        border-radius:0px ;
    }
    .proj-inner-box {
        width: 200px;
        height: 150px;
        border-radius: 20px;
    }
    .proj-outer-box{
        width: 200px;
        height: 150px;
    }
    .rcol{
        flex-direction: column-reverse;
        padding: 10px;
    }
    
    /*modal*/
    .modal{
        width: 80%;
        height: 80%;
    }
    /*modal section*/
    .modal-head{
        background-color: rgb(49, 49, 49);
        
    }
    .close{
        color: white;
    }
    .modal-head h1{
        color: #ffffff;
        font-size: 0.8em;
    }
    .project-info-sec{
        flex-direction: column;
        overflow-y: scroll;
        scrollbar-track-color: #00FBFC;
        /*background-color: green;*/
    }
    .modal-pinfo-left{
        width: 100%;
        height: auto;
        padding: 10px 10px 10px 10px;
    }
    .get-code{
        width: 100px;
        font-size: 1em;    
    }
    
    .modal-pinfo-right{
        width: 100%;
        height: 400px;
        padding-bottom: 15px;
    }
    
    /* Individual image cards */
    .view-more{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 10px 50px 10px;
    }
    .view-more-btn{
        padding: 10px 10px 10px 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        border-radius: 20px;
        font-size: 0.9em;
        color: rgb(251, 251, 251);
    }

    /*Contact section*/
#contact{
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-size: 1.2em;
}
.contact-main{
    padding-top: 40px;
    flex-direction: column;
    font-size: 0.9em;
}
.contact-left{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding:10px;
}
.contact-right{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left:10px;
}
footer{
    padding-top: 10px;
    display: flex;
    margin-top: 50px;
    align-items: center;
    justify-content: center;
    background-color: #444444;
}
}


/*For tab upto 768px*/
@media screen and (max-width:769px) and (min-width:427px) {
    nav {
        font-size: 0.65em;
        height: auto;
        background-color: #444444;
        position: relative;
        transition: max-height 0.3s ease-in-out;
    }
    .logo {
        width: 100%;
        padding-left: 20px;
        
    }
    .navbar {
        width: 100%;
        padding-right: 10px;
        
    }
    #hamburger {
        display: flex;
        align-items: center;
    }
    #hamburgerN {
        display: none;
        align-items: center;

    }
    #nav_list {
        display: none; /* Initially hidden */
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center horizontally */
        gap: 20px; /* Adds gap between list items */
        padding: 20px 0; /* Optional: adds vertical padding */
        width: 100%;
        font-size: 1.9em;
    }
    
    
    /*Hero section*/
    #hero{
        flex-direction: column;
    }
    .leftside{
        width: 100%;
        height: 40vh;
    }
    .prof-pic{
        width: 200px;
        height: 200px;
        border: 3px solid #00FBFC;
    }

    .rightside{
        width: 100%;
        padding:0px 20px 0 30px;
    }

    .rightside h3{
        font-size: 1.5em;
    }
    .rightside h1{
        font-size: 2em;
    }
    .rightside p{
        font-size: 0.7em;
        padding: 1px;
    }
    .typewriter-container{
        font-size: 1.5em;
    }
    
    /*Type writer*/
   
    .social-box{
        width: 300px;
        height: 20px;
        display: flex;
        flex-direction: row;
        padding: 20px 20px 20px 0px;
        margin:20px 0 20px 0;
        align-items: center;
        
        justify-content: space-between;
    }
    .box{
        width: 50px;
        height: 50px;
        border: 2px solid #00FBFC;
        display: flex;
        margin: 0 10px 0 0;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        font-size: 1.2em;
    }
    .box a{
            text-decoration: none;
            color: #00FBFC;
            
    }
    #cvdownload{
        margin-top: 8px;
        width: 120px;
        height: 40px;
        border-radius: 50px;
        background-color: #00FBFC;
        cursor: pointer;
        font-size: 0.8em;
    }
    .cvdownload{
        margin-top: 8px;
        width: 120px;
        height: 40px;
        border-radius: 50px;
        background-color: #00FBFC;
        cursor: pointer;
        font-size: 0.8em;
    }
    /*About section*/
    .about{
        margin: 10p;
        height: 650px;
    }
    .about_tittle{
        padding: 50px 10px 10px;
        font-size: 1.5em;
    }
    .about_left{
        width: 90%;
        height: 100%;
        font-size: 1.3em;
    
    }
    .about_left ul{
        margin: 20px 0px 0px 10px;
        font-size: 0.8em;
    }
    .about_left ul li{
        list-style: none;
        margin: 10px 0px 10px 0px;
        padding: 10px;
        border-bottom: 2px solid #00FBFC;
    }
    .left-bar{
        border-left: 2px solid #00FBFC;
    }
    .about_right{
        font-size: 1.3em;
        display: none;
    }

    /*skill section*/
    .skill{
        height: 180vh;
    }
    .skill-tittle{
        height: 100px;
        font-size: 1.5em;
        
    }
    .skill-main{
        /*background-color: green;*/
        flex-direction: column;
        padding-top: 0px;
        
        margin-top: 0px;
        align-items: center;
    }
    .skill-sec{
        width: 300px;
        padding: 20px 0px 20px 0px;
    }
    .skill-sec:hover{
        box-shadow: 0px 0px 20px #08c4ce;
        transform: translateY(0px);
    }
    .skill-repr{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        /*background-color: yellow;*/
        padding: 10px;
        font-size: 0.9em;
    }
    .skill-repr li{
        padding: 7px;
       /* background-color: black;*/
        margin: 5px 0 0px 0;
        display: flex;
        flex-direction: column;
    }
    .skill-name{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .skill-pic-box{
        width: 100%;
        height: 10px;
        background-color:#a7a0a0bf ;
        display: flex;
        border-radius: 10px;
    }
    .inner-percent{
        background-color:#00FBFC;
        border-radius: 10px;
    }

    /*Project section*/
    .proj-tittle{
        height: 100px;
        font-size: 1.5em;
    }
    .project-container{
        flex-direction: column-reverse;
        padding: 10px 0px 50px 0px;
    }
    .proj-left{
        width: 100%;
        height: 60%;
        padding: 10px 10px 10px 10px;
    }
    .project-name{
        color: #00FBFC;
        font-size: 1em;
        padding-bottom: 5px 0px 5px 0px;
    }
    .description{
        padding-right: 10px;
        padding-left: 10px;
        padding-bottom: 20px;
        
    }
    .p-rcol{
        padding: 10px;
    }
    .read-more{
        width: 100px;
        padding: 5px;
        background-color: transparent;
        border-radius: 10px;
        outline: none;
        border: 2px solid transparent;
        color: white;
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-direction: row;
    }
    .read-more:hover{
        box-shadow: 0px 0px 10px #807d7d;
        cursor: pointer;
        
    }
    .proj-right{
        width: 100%;
        height: 40%;
        padding-right: 0px;
        padding-bottom: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .proj-right img{
        width: 100%;
        height: 100%;
        border-radius:0px ;
    }
    .proj-inner-box {
        width: 200px;
        height: 150px;
        border-radius: 20px;
    }
    .proj-outer-box{
        width: 200px;
        height: 150px;
    }
    .rcol{
        flex-direction: column-reverse;
        padding: 10px;
    }
    
    /*modal*/
    .modal{
        width: 80%;
        height: 80%;
    }
    /*modal section*/
    .modal-head{
        background-color: rgb(49, 49, 49);
        
    }
    .close{
        color: white;
    }
    .modal-head h1{
        color: #ffffff;
        font-size: 0.8em;
    }
    .project-info-sec{
        flex-direction: column;
        overflow-y: scroll;
        scrollbar-track-color: #00FBFC;
        /*background-color: green;*/
    }
    .modal-pinfo-left{
        width: 100%;
        height: auto;
        padding: 10px 10px 10px 10px;
    }
    .get-code{
        width: 100px;
        font-size: 1em;    
    }
    
    .modal-pinfo-right{
        width: 100%;
        height: 400px;
        padding-bottom: 15px;
    }
    
    /* Individual image cards */
    .view-more{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 10px 50px 10px;
    }
    .view-more-btn{
        padding: 10px 10px 10px 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        border-radius: 20px;
        font-size: 0.9em;
        color: rgb(251, 251, 251);
    }

    /*Contact section*/
#contact{
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-size: 1.2em;
}
.contact-main{
    padding-top: 40px;
    flex-direction: column;
    font-size: 0.9em;
}
.contact-left{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding:10px;
}
.contact-right{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left:10px;
}
footer{
    padding-top: 10px;
    display: flex;
    margin-top: 50px;
    align-items: center;
    justify-content: center;
    background-color: #444444;
}
}

